INSTR
INSTR will locate the position of either words or characters within a string.

ARGUMENTS:
* Search = The string that will be searched through.
* Pattern = The string or character to find
* Start = The position to start the search
optional:
* Case Flag = If set to 1 the search will be case sensitive

RETURNS:
The start position of the pattern or 0 if the pattern wasn't found


SYNTAX
Return Integer=INSTR(Search,Pattern,Start [,Case Flag])


RELATED INFO
View String Operations Index
View STYX Index
View STYX Main File